Skip to main content

2.1.2. Querry string parametrs

Parametrs

Main Parameters

ParameterDescriptionMandatoryTypeNotes
countryCountry codeYes
nameOrganization name (mandatory for new registration)Yes (for new registration)
fiscal_idTax identification number (mandatory for new registration)Yes (for new registration)
is_legalIndicator of a legal entity (true/false)
contract_numContract number
contact_nameContact person
regionRegion name; if not found in the directory, it will be added
districtDistrict name; if not found in the directory, it will be added
addressOrganization address
emailEmail (mandatory for new registration)Yes (for new registration)
phoneOrganization phone number (mandatory for new registration)Yes (for new registration)
activitiesArray of activity typesarray of objectsSee activities Array Structure below
activated_packagesActivated packagesarray of objectsSee activated_packages Array Structure below
activated_servicesActivated servicesarray of objectsSee activated_services Array Structure below

activities Array Structure

ParameterDescriptionMandatoryTypeNotes
codeActivity code
nameActivity name

activated_packages Array Structure

ParameterDescriptionMandatoryTypeNotes
codePackage code
date_fromStart date of activation
date_forEnd date of activation
priceSpecialized package price

activated_services Array Structure

ParameterDescriptionMandatoryTypeNotes
codeService code
date_fromStart date of activation
date_forEnd date of activation
priceSpecialized service price

[!NOTE] The mandatory fields for registration are: name, fiscal_id, phone, email.

Code structure

{
"country": "",
"name": "",
"fiscal_id": "",
"is_legal": true,
"contract_num": "",
"contact_name": "",
"region": "",
"district": "",
"address": "",
"email": "",
"phone": "",
"activities": [
{
"code": "",
"name": ""
}
],
"activated_packages": [
{
"code": "",
"date_from": "",
"date_for": "",
"price": 0
}
],
"activated_services": [
{
"code": "",
"date_from": "",
"date_for": "",
"price": 0
}
]
}

Field Descriptions

  • country – Country code, required
  • name – Organization name, required for new registration
  • fiscal_id – Tax identification number, required for new registration
  • is_legal – Indicates if it is a legal entity (true|false)
  • contract_num – Contract number
  • contact_name – Contact person
  • region – Region name; if not found in the directory, it will be added
  • district – District name; if not found in the directory, it will be added
  • address – Organization address
  • email – Email, required for new registration
  • phone – Organization phone number, required for new registration
  • activities – Array of activity types, each containing:
    • code – Activity code
    • name – Activity name
  • activated_packages – Array of activated packages, each containing:
    • code – Package code
    • date_from – Start date
    • date_for – End date
    • price – Specialized package price
  • activated_services – Array of activated services, each containing:
    • code – Service code
    • date_from – Start date
    • date_for – End date
    • price – Specialized service price